bring your girl to cunny sauna day

you need:
- sprites and portraits of your character wearing only a towel (walking sprites and a sitting one are enough)
- add sauna to the schedule (the girls meet on wednesdays, timings and stuff below)

optional:
- nude variants of the sprites and portraits (these unlock at 8+ hearts with the character)
- add sauna schedule to "marriage_wed"
- animate your sauna sprite
- pre/at/past sauna dialogue


//how to add the sprites
		{
            "LogName": "Towel Sprites", 
            "Action": "EditImage",
            "Target": "Characters/YourCharacter",
            "FromFile": "Assets/Characters/YourCharacter_Towel.png",
			"When": {
				"LocationName": "Custom_AnSSauna",
				"HasMod": "ashleyandspookymod",
            },
            "Update": "OnLocationChange"
        },
		{
            "LogName": "Towel Portraits", 
            "Action": "EditImage",
            "Target": "Portraits/YourCharacter",
            "FromFile": "Assets/Portraits/YourCharacter_Towel.png",
			"When": {
				"LocationName": "Custom_AnSSauna",
				"HasMod": "ashleyandspookymod",
            },
            "Update": "OnLocationChange"
        },
		{
            "LogName": "Nude Sprites", 
            "Action": "EditImage",
            "Target": "Characters/YourCharacter",
            "FromFile": "Assets/Characters/YourCharacter_Nude.png",
			"When": {
				"LocationName": "Custom_AnSSauna",
				"Hearts:YourCharacter": "{{Range: 8, 14}}",  //this will switch your character to the nude sprites at 8+ hearts
				"HasMod": "ashleyandspookymod",
            },
            "Update": "OnLocationChange"
        },
		{
            "LogName": "Nude Portraits", 
            "Action": "EditImage",
            "Target": "Portraits/YourCharacter",
            "FromFile": "Assets/Portraits/YourCharacter_Nude.png",
			"When": {
				"LocationName": "Custom_AnSSauna",
				"Hearts:YourCharacter": "{{Range: 8, 14}}",
				"HasMod": "ashleyandspookymod",
            },
            "Update": "OnLocationChange"
        },
		
// schedule
the sauna is locked until you get 5 hearts with ashley, the girls won't go there until then
the girls meet on wednesdays outside the mansion starting at 12:40 and go inside for a bit at 14:10, then head to the sauna at 14:30 and stay in there until 19:00, then some of them hang out in the lobby until 20:20 and go home
npcs can walk over the sauna chairs

		{
			"Action": "EditData",
            "Target": "Characters/schedules/YourCharacter",
			"Entries":{     //these are another characters' schedules, you might want to change the coordenates
				"Wed": "610 before sauna schedule /1000 Custom_HauntedMansionExterior 20 29 0 \"Characters\\Dialogue\\YourCharacter:GoingtoSauna\"/1410 Custom_HauntedMansionInterior 24 29 3 \"Characters\\Dialogue\\YourCharacter:GoingtoSauna\"/1430 Custom_AnSSauna 8 5 2 \"Characters\\Dialogue\\YourCharacter:AtSauna\"/1900 after sauna schedule",
				"marriage_Wed": "1000 Custom_HauntedMansionExterior 20 29 0/1410 Custom_HauntedMansionInterior 24 29 3 \"Characters\\Dialogue\\YourCharacter:GoingtoSauna\"/1430 Custom_AnSSauna 8 5 2 \"Characters\\Dialogue\\YourCharacter:AtSauna\"/1900 BusStop -1 23 3",
				},
			"When": {
				"Hearts:Ashley": "{{Range: 5, 14}}",  //add this so that your character doesn't go to the sauna while it's locked
				"HasMod": "ashleyandspookymod",   //and this so that your character doesn't try to go here if the player doesn't have the mod installed
            },
		},
		
// dialogue

		{
			"Action": "EditData",
			"Target": "Characters/Dialogue/YourCharacter",
			"Entries": {  	 //add these to the schedule, like /1430 Custom_AnSSauna 8 5 2 \"Characters\\Dialogue\\YourCharacter:AtSauna\"/
				"GoingtoSauna": "",
				"AtSauna": "",
				"AfterSauna": "",
			},
			"When": {
				"HasMod": "ashleyandspookymod",
    			},
		},
		
// marriage dialogue
these will play on the days your character will go to the sauna while married (sometimes), but they might play if you have set your character to leave home a different day too

		{
			"Action": "EditData",
			"Target": "Characters/Dialogue/marriageDialogueYourCharacter",
			"Entries": {
				"funLeave_YourCharacter": "",
				"funReturn_YourCharacter": "",
			},
			"When": {
				"HasMod": "ashleyandspookymod",
    			},
		},